home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 8335 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  888 b 

  1. Path: news.eunet.cz!usenet
  2. From: Borivoj Kostka <kostka@tovek.cz>
  3. Newsgroups: comp.lang.c,comp.lang.c++
  4. Subject: Re: GPF in BC++ 4.5
  5. Date: 16 Feb 1996 21:27:22 GMT
  6. Organization: EUnet Czech Republic
  7. Message-ID: <4g2srr$blo@news.eunet.cz>
  8. NNTP-Posting-Host: sherlock.dial-up.cz
  9.  
  10. trstedl@u.washington.edu (Todd Stedl) writes:
  11. > I'm having problems with a General Protection Exception that I 
  12. > continually get from a program I run in Borland C++ 4.5.  The reason I'm 
  13. > cross posting to the C group is b/c it's a standard C program.  I've 
  14. > looked at Borland's Web site but found no help there.
  15. Your program's heap is probably destroyed. Use heapcheck
  16. and heapwalk functions to check consistency. You maybe owerwrite
  17. info about size of block, used by free function (placed before
  18. the allocated block) or the pointer itselt (check if the pointer
  19. is the same after malloc and before free.
  20.  
  21.